# Remove employee qualification

Deletes the specified qualification associated with the given employee within the current account context.
            
Behavior:
- Validates employee and qualification association within the account
- Ensures the qualification exists for the specified employee
- Removes the qualification record
- Returns the removed qualification details if applicable
- Logs the action as an employee qualification removal event

Endpoint: POST /api/v1/portfolio/employees/{employeeIdentifier}/qualifications/{qualificationIdentifier}/remove

## Path parameters:

  - `employeeIdentifier` (string, required)

  - `qualificationIdentifier` (string, required)

## Response 200 fields (text/plain):

  - `data` (object)

  - `data.employeeQualificationId` (string)

  - `data.employeeQualificationFileName` (string,null)

  - `data.preview` (object)

  - `data.preview.hasFilePreview` (boolean)

  - `data.preview.hasFileThumbnail` (boolean)

  - `data.preview.previewURL` (string,null)

  - `data.preview.thumbnailUrl` (string,null)

  - `data.qualification` (object)

  - `data.qualification.qualificationId` (string)

  - `data.qualification.qualificationName` (string,null)

  - `data.responseDescription` (string,null)

  - `data.employeeQualificationTitle` (string,null)

  - `data.employeeQualificationFileId` (string,null)

  - `message` (string,null)

  - `isError` (boolean)

  - `messageCode` (integer)

  - `status` (string,null)

  - `errorType` (string,null)

  - `traceid` (string,null)

  - `responseDescription` (string,null)


